home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
scheme
/
gjr
/
cmplrtst.lha
/
klexpr.scm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-03-27
|
249 b
|
21 lines
;;; -*- Scheme -*-
#|
Description:
This code test internal lexpr invocation.
Usage:
(foo 1 2) -> (11 . 8)
|#
(declare (usual-integrations))
(define (foo x y)
(define (bar . all)
(apply + all))
(cons (bar x y y y y y)
(bar y y y y)))